home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_479 / uucp / uucp113.2.lzh / uucp2 / man / Aliases < prev    next >
Text File  |  1990-12-27  |  2KB  |  81 lines

  1.  
  2. NAME
  3.     UULIB:Aliases
  4.  
  5. DESCRIPTION
  6.     UULIB:Aliases is a text file containing mail aliases.  There
  7.     is no need to run newaliases after modifying this file (there
  8.     is no newaliases program).    This file is scanned by sendmail
  9.     for each item of incomming and outgoing email.
  10.  
  11.     Each line in UULIB:Aliases may be either blank, have a '#'
  12.     as the first character to indicate a comment, or begin an
  13.     alias.  An alias consists of a name, colon, and list of
  14.     items.  For example:
  15.  
  16.     comiclovers:    charlie, ben, lucy, james
  17.  
  18.     MULTI-LINE aliases may be specified by a comma at the end of
  19.     each line to be continued:
  20.  
  21.     comiclovers:    charlie, ben,
  22.             lucy, james
  23.  
  24.     Note that the last line has no comma.  Each item in an alias
  25.     may be:
  26.  
  27.     (1) user        a local user name
  28.     (2) \user       forces a local user name if the name is aliased
  29.     (3) alias       another alias
  30.     (4) path        some path
  31.     (5) >file       append the mail item to some file
  32.     (6) <file       load a further list of destinations from a
  33.             file (one item per line)
  34.     (7) |command    pipe mail item to a command with optional args
  35.     (8) "|command args"
  36.  
  37.     For example, if I want incomming mail to be posted to my mail box
  38.     AND automatically appended to some archive file (and note here
  39.     that I must use '\' to prevent an alias loop):
  40.  
  41.     dillon: \dillon, >uumail:archive
  42.  
  43.     items may point to other aliases (dillon is already an alias):
  44.  
  45.     comiclovers:    dillon, fred
  46.  
  47.     mail may be piped to a command, such as an automated vacation-response
  48.     program:
  49.  
  50.     dillon: \dillon, >uumail:archive, |vacation
  51.  
  52.     ALIAS ARE EXPANDED BY DEFAULT.  You can disable alias expansion by
  53.     using a double colon, like this:
  54.  
  55.     huge-mailing-list:: fubar@red, d, asdflk
  56.  
  57.     Using the double colon will cause the To: field to only contain the
  58.     name of the alias, 'huge-mailing-list'.  This is extremely useful for
  59.     mailing lists.
  60.  
  61. COMMENTS IN THE FILE
  62.  
  63.     A comment is denoted by a '#'.  Also, any text that occurs after the
  64.     first space in a comma delimited field will be ignored.  A line that
  65.     begins with a '#' is ignored (as if it did not exist).  For example:
  66.  
  67.     test:   t1,
  68.         t2 (This is T2),
  69.         t3, # fubar
  70.      #        t4,
  71.         t5,
  72.  
  73.     The above alias expands to: t1, t2, t3, t5
  74.  
  75. FILES
  76.  
  77.     uulib:Aliases
  78.     uucp:c/sendmail
  79.  
  80.  
  81.